<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */
body {
    font-size:16px;
    color:#666;
}
*{
    margin:0;
    padding:0;
    font-family:'Microsoft YaHei';
}
ul li{
    list-style-type:none;
}
a{  
    text-decoration: none; 
    -webkit-transition: color .2s ease,background-color .3s ease;  
    -moz-transition: color .2s ease,background-color .3s ease;   
    -ms-transition: color .2s ease,background-color .3s ease;  
    -o-transition: color .2s ease,background-color .3s ease; 
    transition: color .2s ease,background-color .3s ease;
}
a{
    -webkit-transition:all 0.2s linear;
    -mos-transition:all 0.2s linear;
    -mz-transition:all 0.2s linear;
    -o-transition:all 0.2s linear;
    transition:all 0.2s linear;
}
a:hover{
    -webkit-transition:all 0.2s linear;
    -mos-transition:all 0.2s linear;
    -mz-transition:all 0.2s linear;
    -o-transition:all 0.2s linear;
    transition:all 0.2s linear;
}
.indent{ 
    text-indent: 2em;
}
p.indent{ 
    padding: 5px 0;
}
input {
	outline: none;
	border:none;
}
select {
	outline: none;
	overflow: hidden;
	/*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/
	border: none;
	/*很关键：将默认的select选择框样式清除*/
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	/*为下拉小箭头留出一点位置，避免被文字覆盖*/
	padding-right: 30px;
	padding-left:20px;
}
select::-ms-expand {
 display: none;
}
.fl{
    display:block;
    float:left;
}
.fr{
    display:block;
    float:right;
}
.clearfix{ 
    zoom:1;
}
.clearfix:after{  
    display:block; 
    clear:both;  
    content:"";
}
.wrap{  
    width: 1200px;
    margin: 0 auto;
	position: relative;
}
.text-cut{ 
    overflow: hidden;  
    white-space: nowrap;  
    -webkit-text-overflow: ellipsis;
    -moz-text-overflow: ellipsis;
    -ms-text-overflow: ellipsis; 
    -o-text-overflow: ellipsis; 
    text-overflow: ellipsis;
}
i,i.icon{
    display:block;
    background-repeat:no-repeat;
    background-position:center;
    background-size:contain;
}
.img-magnify { 
    overflow: hidden; 
} 
.img-magnify img, 
.img-magnify .magchild { 
    -webkit-transition: all .5s ease; 
    -moz-transition: all .5s ease; 
    -ms-transition: all .5s ease; 
    -o-transition: all .5s ease; 
    transition: all .5s ease; 
} 
.img-magnify img:hover, 
.img-magnify .magchild:hover { 
    -webkit-transform: scale(1.2); 
    -moz-transform: scale(1.2); 
    -ms-transform: scale(1.2); 
    -o-transform: scale(1.2); 
    transform: scale(1.2); 
}

.border-circle {
    position: relative;
}
.border-circle .bor {
    background-color: #e9af06;
    position: absolute;
    transition: all 0.5s ease-in 0s;
    z-index: 100;
}
.border-circle .bor-left, .border-circle .bor-right {
    height: 0;
    width: 1px;
}
.border-circle .bor-top, .border-circle .bor-bottom {
    height: 1px;
    width: 0;
}
.border-circle .bor-left {
    left: 0;
    top: 0;
}
.border-circle .bor-right {
    bottom: 0;
    right: 0;
}
.border-circle .bor-top {
    right: 0;
    top: 0;
}
.border-circle .bor-bottom {
    bottom: 0;
    left: 0;
}
.border-circle:hover .bor-left, .border-circle:hover .bor-right {
    height: 100%;
}
.border-circle:hover .bor-top, .border-circle:hover .bor-bottom {
    width: 100%;
}

.mt{
    margin-top:10px;
}
.mb{
    margin-bottom:10px;
}
.ml{
    margin-left:10px;
}
.mr{
    margin-right:10px;
}
.coveimg{
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
}
</pre></body></html>